From 37f78e88600942ea5263e3d04ffd423d08a70895 Mon Sep 17 00:00:00 2001 From: "cl349@arcadians.cl.cam.ac.uk" Date: Thu, 2 Dec 2004 10:24:43 +0000 Subject: [PATCH] bitkeeper revision 1.1159.187.51 (41aeed6bzN1zaGFaAP8KEzkGD9sW_A) Makefile: Rename install_* targets to install-* -- matching the targets we had already. --- Makefile | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 13f5c5cb97..7d4d23f7ef 100644 --- a/Makefile +++ b/Makefile @@ -19,28 +19,28 @@ export INSTALL_DIR include buildconfigs/Rules.mk .PHONY: all dist install xen tools kernels docs world clean mkpatches mrproper -.PHONY: kbuild kdelete kclean install_tools install_xen install_docs -.PHONY: install_kernel +.PHONY: kbuild kdelete kclean install-tools install-xen install-docs +.PHONY: install-kernels all: dist # install everything into the standard system directories # NB: install explicitly does not check that everything is up to date! -install: install_tools install_xen install_kernels install_docs +install: install-tools install-xen install-kernels install-docs -install_xen: +install-xen: $(MAKE) -C xen install -install_tools: +install-tools: $(MAKE) -C tools install -install_kernels: +install-kernels: $(shell cp -a $(INSTALL_DIR)/boot/* /boot/) $(shell cp -a $(INSTALL_DIR)/lib/modules/* /lib/modules/) $(shell cp -dR $(INSTALL_DIR)/boot/*$(LINUX_VER)* $(prefix)/boot/) $(shell cp -dR $(INSTALL_DIR)/lib/modules/* $(prefix)/lib/modules/) -install_docs: +install-docs: sh ./docs/check_pkgs && $(MAKE) -C docs install || true # build and install everything into local dist directory -- 2.30.2